home *** CD-ROM | disk | FTP | other *** search
/ Image Folio - NEC / Image Folio - NEC.iso / insimf.bat < prev   
Encoding:
DOS Batch File  |  1988-10-27  |  4.6 KB  |  112 lines

  1. echo off
  2. rem   ------------------------------------------------------------
  3. rem   run the program to change the config.sys and autoexec.bat
  4. rem   files and build the batch file (COPYIMF.BAT) to copy all 
  5. rem   the files to the right place. make a save copy of the 
  6. rem   system files and another working copy for csysupd
  7. rem   -----------------------------------------------------------
  8. rem                               gte rid of copyimf.bat if we find it
  9. rem                               in case they are re-installing
  10. if exist copyimf.bat erase copyimf.bat
  11.  
  12. if not exist config.sys goto error1:
  13. if not exist autoexec.bat goto error5:
  14. if not exist csysupd.exe goto error4:
  15. rem                              make 2 copies of config.sys and
  16. rem                              autoexec.bat: one as backup in
  17. rem                              case of problems and another to
  18. rem                              be used as input to the csysupd
  19. rem                              program -- again, as safeguard
  20. copy config.sys config.imf
  21. copy config.sys config1.imf
  22. copy autoexec.bat autoexec.imf
  23. copy autoexec.bat auto1.imf
  24. csysupd
  25. if errorlevel 1 goto error2
  26. rem   ------------------------------------------------------------
  27. rem   update the config.sys file
  28. rem   ------------------------------------------------------------
  29. if not exist config2.imf goto config1:
  30. copy config2.imf config.sys
  31. erase config1.imf
  32. erase config2.imf
  33. goto auto1:
  34. rem   -----------------------------------------------------------------
  35. rem   if config2.imf does not exist, it's because there was no need to
  36. rem   modify it. 
  37. rem   -----------------------------------------------------------------
  38. :config1
  39. erase config1.imf
  40. copy config.imf config.sys
  41. rem   ----------------------------------------------------------------
  42. rem   update the autoexec.bat file
  43. rem   ----------------------------------------------------------------
  44. :auto1
  45. if not exist auto2.imf goto auto2:
  46. copy auto2.imf autoexec.bat
  47. erase auto1.imf
  48. erase auto2.imf
  49. goto copyfiles:
  50. rem   ---------------------------------------------------------------
  51. rem   if auto2.imf does not exist it's because there was no need to
  52. rem   update the autoexec.bat file.
  53. rem   --------------------------------------------------------------
  54. :auto2
  55. erase auto1.imf
  56. copy autoexec.imf autoexec.bat
  57. rem   ------------------------------------------------------------
  58. rem   cysupd created copyimf.bat. run it. if it's not there
  59. rem   it's because the user does not need it -- he'll run from
  60. rem   CD-ROM
  61. rem   ------------------------------------------------------------
  62. :copyfiles
  63. if not exist copyimf.bat goto finis:
  64. copyimf
  65. goto end:
  66. :finis
  67. echo Image Folio installation complete.
  68. echo You must re-boot your computer before running...
  69. goto end:
  70. rem   ------------------------------------------------------------
  71. rem    error1--the config.sys file is not here
  72. rem   ------------------------------------------------------------
  73. :error1
  74. echo Did not find the CONFIG.SYS file on this disk. 
  75. echo To install Image Folio please copy all the files
  76. echo in the CD-ROM's root directory to your boot disk's
  77. echo root directory. (Please refer to your DOS manual
  78. echo to determine which is the boot disk.)
  79. goto end
  80. rem  ---------------------------------------------------------------
  81. rem     error2--the csysupd program failed. restore the config.sys
  82. rem             and the autoexec.bat
  83. rem  ---------------------------------------------------------------   
  84. :error2
  85. echo There was a problem with the Image Folio installation. Files could not
  86. echo be copied to the hard disk.
  87. copy config.imf config.sys
  88. copy autoexec.imf autoexec.bat
  89. if exist config1.imf erase config1.imf
  90. if exist config2.imf erase config2.imf
  91. erase config.imf
  92. erase autoexec.imf
  93. goto end:
  94. rem  ----------------------------------------------------------------
  95. rem      error4: can't find the csysupd program
  96. rem  ----------------------------------------------------------------
  97. :error4
  98. echo File CSYSUPD.EXE needs to be present in the root directory
  99. echo of your boot disk. Please review your installation instructions.
  100. goto end:
  101. rem   ------------------------------------------------------------
  102. rem    error5--the autoexec.bat file is not here
  103. rem   ------------------------------------------------------------
  104. :error5
  105. echo Did not find the AUTOEXEC.BAT file on this disk. 
  106. echo To install Image Folio please copy all the files
  107. echo in the CD-ROM's root directory to your boot disk's
  108. echo root directory. (Please refer to your DOS manual
  109. echo to determine which is the boot disk.)
  110. goto end:
  111. :end
  112.